home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / BIOSMEM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  156 b   |  8 lines

  1. /* biosmem.c --- p569 */
  2. #include <bios.h>
  3. main()
  4. {
  5.     unsigned memsize;
  6.     memsize = biosmemory();
  7.     printf("This system has %dK memory.\n", memsize);
  8. }